home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / perl-5.003-complete / bin / pod2text < prev    next >
Text File  |  1996-09-10  |  139b  |  13 lines

  1. #!/ade/bin/perl
  2.     eval 'exec perl -S $0 "$@"'
  3.     if 0;
  4.  
  5. use Pod::Text;
  6.  
  7. if(@ARGV) {
  8.     pod2text($ARGV[0]);
  9. } else {
  10.     pod2text("<&STDIN");
  11. }
  12.  
  13.